home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / bbs / fraction / _ffr.bat < prev    next >
DOS Batch File  |  1992-01-01  |  1KB  |  57 lines

  1. @echo off
  2. echo ╔═════════════════════════════════════════════╤═══════════════════╗
  3. echo ║_FFR.BAT batchfile for splitting capturefiles│DG1BBQ@DB0CL 911229║
  4. echo ╚═════════════════════════════════════════════╧═══════════════════╝
  5. echo.
  6.  
  7. if "%1$"=="$" goto not_ok
  8.  
  9. rem Check, if the capturefile exists.
  10. if exist \packet\save\save.c0%1 goto continue
  11. echo '\packet\save\save.c0%1' does not exist!
  12. goto end
  13.  
  14. rem Call FFR
  15. :continue
  16. ffr \packet\save\save.c0%1 -x *
  17.  
  18.  
  19. rem Delete backup, if it already exists.
  20. if exist \packet\save\save.b0%1 goto erase
  21. goto rename
  22.  
  23. :erase
  24. echo Delete old backup.
  25. echo j |del \packet\save\save.b0%1
  26.  
  27. rem Convert the capturefile into a backupfile.
  28. :rename
  29. echo.
  30. echo '\packet\save\save.c0%1' renamed to '\packet\save\save.b0%1'.
  31. ren \packet\save\save.c0%1 \packet\save\save.b0%1
  32.  
  33. goto end
  34.  
  35. rem Wrong parameter.
  36. :not_ok
  37. echo Parameter missing!
  38. echo.
  39. echo Usage:
  40. echo ------
  41. echo.
  42. echo _ffr X
  43. echo.
  44. echo X stands for the number of the capturefile that is to be split by FFR.
  45. echo E.g: 1 for save.c01.
  46. echo.
  47. echo The extracted files will automatically be written to the following
  48. echo directories:
  49. echo \packet\code   - for encoded files.
  50. echo \packet\mail   - for general mail.
  51. echo \packet\pers   - for personal mail.
  52. echo.
  53. echo The capturefile will be renamed into '*.B0*', e.g. 'SAVE.B01' after
  54. echo processing.
  55. echo.
  56. :end
  57.